diff options
| author | real-zephex <[email protected]> | 2024-05-27 13:07:12 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-05-27 13:07:12 +0530 |
| commit | c5271f3a62a1c3becd29222d313ac0cafd04d5fc (patch) | |
| tree | c9335343c9972a04b92fdbc710d75b75aa6d8df9 /src/app/kdrama/[id] | |
| parent | 🎨 refactor(ui): Update background image for info page and home page, and f... (diff) | |
| download | dramalama-c5271f3a62a1c3becd29222d313ac0cafd04d5fc.tar.xz dramalama-c5271f3a62a1c3becd29222d313ac0cafd04d5fc.zip | |
✨ style(show): minor tweaks to kdrama, anime and movie show pages
Diffstat (limited to 'src/app/kdrama/[id]')
| -rw-r--r-- | src/app/kdrama/[id]/page.jsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/app/kdrama/[id]/page.jsx b/src/app/kdrama/[id]/page.jsx index ce8b6ba..94f5adb 100644 --- a/src/app/kdrama/[id]/page.jsx +++ b/src/app/kdrama/[id]/page.jsx @@ -13,13 +13,12 @@ export default async function DramaInfo({ params }) { return (
<section
style={{
- backgroundColor: "black",
backgroundImage: `radial-gradient(gray 1px, transparent 1px)`,
backgroundSize: "40px 40px",
}}
- className="h-screen "
+ className="h-screen bg-white dark:bg-black"
>
- <section className="absolute inset-0 bg-gradient-to-b from-transparent to-black">
+ <section className="absolute inset-0 bg-gradient-to-b from-transparent to-white-400 dark:to-black">
<section className="pt-12 lg:w-9/12 m-auto">
<div className="flex items-center justify-center lg:justify-start md:justify-start">
<Image
|